home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 February / CHIPCD_02_2002.iso / Internet / Macromedia ColdFusion Server 5 / coldfusion-50-win-us.exe / data1.cab / Examples / CFDOCS / snippets / cfsilent.cfm < prev    next >
Encoding:
Text File  |  2001-06-13  |  626 b   |  29 lines

  1. <!-----------------------------------------------------------
  2.   This example illustrates use of the CFSILENT tag. 
  3.   ----------------------------------------------------------->
  4. <HTML>
  5. <HEAD>
  6. <TITLE>CFSILENT</TITLE>
  7. </HEAD>
  8.  
  9. <BASEFONT FACE="Arial, Helvetica" SIZE=2>
  10. <BODY  bgcolor="#FFFFD5">
  11.  
  12. <H3>CFSILENT</H3>
  13.  
  14. <!--- This example shows the use of CFSilent --->
  15.  
  16. <CFSilent>
  17. <cfset a=100>
  18. <cfset b=99>
  19. <cfset c=b-a>
  20. <cfoutput>#c#</cfoutput>
  21. ...
  22. </CFSilent>
  23. <p>
  24. Even information within CFOUTPUT tags does not appear within
  25. the CFSILENT block.<BR>
  26. b-c = <cfoutput>#c#</cfoutput>
  27. </p>
  28. </BODY>
  29. </HTML>